home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 2 / CD Loisirs 02 / CD Loisirs CD 002.mdf / pc / nympheas / sources / s20_011mome.k < prev    next >
Encoding:
Text File  |  1994-01-01  |  2.2 KB  |  161 lines

  1. object S20_011MOME is MEDIADISTRIBUTOR
  2. has
  3.     
  4.     Finished()
  5.         do
  6.             --
  7.         end;
  8.     
  9. with
  10.     Duration is -1;
  11.     X is 0; Y is 0; Width is 640; Height is 480;
  12.     Items is [
  13.         S20A7_S10A_WAV,
  14.         S20A5_011_PIC,
  15.         S20A1_BOUTON_MUSIQUE,
  16.         S20A2_BOUTON_TEXTE,
  17.         S20A3_BOUTON_OEUVRE,
  18.         S20A4_BOUTON_STOP,
  19.         S20A6_ALBUM_SUITE
  20.     ];
  21. end;
  22.  
  23. object S20A7_S10A_WAV is MEDIADELEGATOR
  24. has
  25.     
  26.     OffScreen()
  27.         do
  28.             self.Enable(true);
  29.             self.Show(true);
  30.             self.Run(false);
  31.         end;
  32.     
  33. with
  34.     Target is C322_S10A_WAV;
  35.     Duration is 0;
  36.     X is 49; Y is 220; Width is 32; Height is 24;
  37. end;
  38.  
  39. object S20A5_011_PIC is MEDIADELEGATOR
  40. has
  41.     
  42.     OffScreen()
  43.         do
  44.             self.GoToBeginning();
  45.             self.Run(true);
  46.             TRANSITION.Set(WipeTop, 300);
  47.             self.Show(true);
  48.         end;
  49.     
  50.     OnScreen()
  51.         do
  52.             S20A7_S10A_WAV.Run(true);
  53.         end;
  54.     
  55.     Finished()
  56.         do
  57.             APPLICATION.GoTo(S159_020RENO);
  58.         end;
  59.     
  60. with
  61.     Target is C298_011_PIC;
  62.     Duration is 1200;
  63.     X is 0; Y is 0; Width is 640; Height is 480;
  64. end;
  65.  
  66. object S20A1_BOUTON_MUSIQUE is MEDIADELEGATOR
  67. has
  68.     
  69.     OffScreen()
  70.         do
  71.             self.Show(true);
  72.             self.Enable(true);
  73.         end;
  74.     
  75.     MouseUp(theX, theY)
  76.         do
  77.             APPLICATION.GoTo(S498_ECRAN_FIN);
  78.         end;
  79.     
  80. with
  81.     Duration is -1;
  82.     X is 245; Y is 206; Width is 47; Height is 47;
  83. end;
  84.  
  85. object S20A2_BOUTON_TEXTE is MEDIADELEGATOR
  86. has
  87.     
  88.     OffScreen()
  89.         do
  90.             self.Enable(true);
  91.             self.Show(true);
  92.         end;
  93.     
  94.     MouseUp(theX, theY)
  95.         do
  96.             APPLICATION.GoTo(S498_ECRAN_FIN);
  97.         end;
  98.     
  99. with
  100.     Duration is -1;
  101.     X is 244; Y is 263; Width is 49; Height is 48;
  102. end;
  103.  
  104. object S20A3_BOUTON_OEUVRE is MEDIADELEGATOR
  105. has
  106.     
  107.     OffScreen()
  108.         do
  109.             self.Enable(true);
  110.             self.Show(true);
  111.         end;
  112.     
  113.     MouseUp(theX, theY)
  114.         do
  115.             APPLICATION.GoTo(S498_ECRAN_FIN);
  116.         end;
  117.     
  118. with
  119.     Duration is -1;
  120.     X is 245; Y is 321; Width is 47; Height is 47;
  121. end;
  122.  
  123. object S20A4_BOUTON_STOP is MEDIADELEGATOR
  124. has
  125.     
  126.     OffScreen()
  127.         do
  128.             self.Enable(true);
  129.             self.Show(true);
  130.         end;
  131.     
  132.     MouseUp(theX, theY)
  133.         do
  134.             APPLICATION.GoBack(MEDIADISTRIBUTOR0);
  135.         end;
  136.     
  137. with
  138.     Duration is -1;
  139.     X is 537; Y is 431; Width is 90; Height is 36;
  140. end;
  141.  
  142. object S20A6_ALBUM_SUITE is MEDIADELEGATOR
  143. has
  144.     
  145.     OffScreen()
  146.         do
  147.             self.Enable(true);
  148.             self.Show(true);
  149.         end;
  150.     
  151.     MouseUp(theX, theY)
  152.         do
  153.             APPLICATION.GoTo(S159_020RENO);
  154.         end;
  155.     
  156. with
  157.     Duration is -1;
  158.     X is 538; Y is 395; Width is 88; Height is 27;
  159. end;
  160.  
  161.